Newer
Older
Simple-Multiplayer-Unity3D / Multiplayer Project / Library / PackageCache / [email protected] / Tests / Runtime / NestedLayout / SceneWithNestedLayoutElementsLoadScript.cs
using NUnit.Framework;
using UnityEngine;
using UnityEngine.TestTools.Utils;

public class SceneWithNestedLayoutElementsLoadScript : MonoBehaviour
{
    public bool isStartCalled { get; private set; }

    protected void Start()
    {
        isStartCalled = true;
    }
}